home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / math / ast53src.zip / MAKEFILE < prev    next >
Text File  |  1996-09-29  |  2KB  |  35 lines

  1. # Astrolog (Version 5.30) File: makefile (DOS version)
  2. #
  3. # IMPORTANT NOTICE: The graphics database and chart display routines
  4. # used in this program are Copyright (C) 1991-1996 by Walter D. Pullen
  5. # (Astara@msn.com, http://www.magitech.com/~cruiser1/astrolog.htm).
  6. # Permission is granted to freely use and distribute these routines
  7. # provided one doesn't sell, restrict, or profit from them in any way.
  8. # Modification is allowed provided these notices remain with any
  9. # altered or edited versions of the program.
  10. #
  11. # This Makefile created for Microsoft nmake utility.
  12. # First created 2/9/1993.
  13. #
  14. # Generally, all that needs to be done to compile (once astrolog.h has been
  15. # customized), is compile each source file, and link them together with the
  16. # math library, and if applicable, the Microsoft C graphics library.
  17. #
  18. #If you have a 286 or higher processor, you can add /G2 to the line below.
  19. #if you have a math coprocessor, you can add /FPi to the line below.
  20. CFLAGS = /nologo /AL /Gt50 /W3 /Ox /Os
  21. #CFLAGS = /nologo /AL /Gt50 /W3 /G2 /FPi /Os
  22.  
  23. CC = cl
  24. name = astrolog
  25. objs = astrolog.obj data.obj data2.obj general.obj io.obj\
  26.  calc.obj matrix.obj placalc.obj placalc2.obj\
  27.  charts0.obj charts1.obj charts2.obj charts3.obj intrpret.obj\
  28.  xdata.obj xgeneral.obj xdevice.obj\
  29.  xcharts0.obj xcharts1.obj xcharts2.obj xscreen.obj
  30.  
  31. $(name).exe : $(objs)
  32. # We are compiling in Large memory model with 16,384 bytes for stack storage.
  33.   $(CC) /F 4000 /o $(name) *.obj graphics.lib
  34. #
  35.